python shortest path of list of nodes site:stackoverflow.com

34

python shortest path of list of nodes site:stackoverflow.com -

def short_path_length(row):
    return nx.shortest_path_length(G, row['Orgin_nodes'], row['Destination_nodes'], weight='length')

df['short_path_length'] = df.apply(short_path_length, axis=1)

Comments

Submit
0 Comments